home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue63 / System / FrmEnumDisplay.dfm < prev    next >
Encoding:
Text File  |  2000-10-05  |  1.1 KB  |  52 lines

  1. object Form1: TForm1
  2.   Left = 229
  3.   Top = 148
  4.   Width = 450
  5.   Height = 370
  6.   Caption = 'Enum Display Properties Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 81
  22.     Height = 13
  23.     Caption = '&Available Modes:'
  24.     FocusControl = Modes
  25.   end
  26.   object Modes: TListView
  27.     Left = 8
  28.     Top = 24
  29.     Width = 417
  30.     Height = 305
  31.     Anchors = [akLeft, akTop, akRight, akBottom]
  32.     Columns = <
  33.       item
  34.         Caption = 'Resolution'
  35.         Width = 100
  36.       end
  37.       item
  38.         Caption = 'Bits Per Pixel'
  39.         Width = 100
  40.       end
  41.       item
  42.         Caption = 'Refresh Rate'
  43.         Width = 400
  44.       end>
  45.     RowSelect = True
  46.     SortType = stText
  47.     TabOrder = 0
  48.     ViewStyle = vsReport
  49.     OnDblClick = ModesDblClick
  50.   end
  51. end
  52.